#import "Fraction.h"

int main (int argc, char *argv[])
{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

    Fraction *a, *b, *c;

    NSLog (@"Liczba alokowanych uamkw: %i", [Fraction count]);

    a = [[Fraction allocF] init];
    b = [[Fraction allocF] init];
    c = [[Fraction allocF] init];

    NSLog (@"Liczba alokowanych uamkw: %i", [Fraction count]);
    [a release];
    [b release];
    [c release];

    [pool drain];
    return 0;
}